* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "open sans", sans-serif;
  line-height: 1.6;
  color: #000000;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  margin: 0 auto;
}
header {
  background-color: #ffffff;
  padding: 20px 0;
  color: #003da5;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  font-family: "montserrat", sans-serif;
  color: #003da5;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: #002366;
  text-decoration: none;
  font-weight: 500;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  font-family: "montserrat", sans-serif;
  background-color: #003da5;
  color: white;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.hero-text {
  max-width: 600px;
  flex: 1;
}

.hero-text h2 {
  font-family: "montserrat", sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-text p {
  font-family: "open sans", sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}

.hero-text ul {
  font-family: "open sans", sans-serif;
  margin: 10px 0 20px 20px;
}

.hero-text ul li {
  font-family: "open sans", sans-serif;
  margin-bottom: 5px;
}

.hero-text .btn {
  background-color: red;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
}

.hero-images {
  flex: 1;
}

.hero-image img {
  margin-left: 300px;
  width: 10%;
  border-radius: 10px;
  flex: 1;
}

.hero-images .gallery {
  display: flex;
  gap: 10px;
}

.hero-images .gallery img {
  width: 50%;
}

.section {
  padding: 60px 0;
}

.pelayanan {
  background-color: white;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  color: red;
  margin-bottom: 20px;
}

.text h3 .text p {
  font-family: "open sans", sans-serif;
  font-size: 17px;
  color: #0c0c0c;
}

.tarif {
  background-color: #003da5;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.text h4 {
  font-family: "montserrat", sans-serif;
  font-size: 26px;
  color: white;
  margin-bottom: 20px;
}

.lead {
  font-family: "open sans", sans-serif;
  color: white;
}

.image {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.image img {
  margin-top: 10px;
  align-items: flex-end;
  margin-left: 200px;
  width: 200%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}
.images {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.images img {
  margin-top: 10px;
  align-items: flex-end;
  margin-left: 200px;
  width: auto;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .container,
  .two-column,
  .sejarah-container,
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  header .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-text h2 {
    font-size: 26px;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .hero-text .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .hero-image img {
    margin-left: 0;
    width: 100%;
    max-width: 300px;
  }

  .images img {
    margin-left: 0;
    max-width: 90%;
  }

  .image.profile {
    margin-right: 0;
    width: 100%;
    max-width: 300px;
  }

  .text {
    text-align: center;
    min-width: unset;
  }

  .lead {
    font-size: 16px;
    text-align: center;
  }
}
